home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 567 b | 23 lines |
- SHELL = /bin/sh
-
- # for version 3.3 and beyond of the Developer Toolbox, this Makefile
- # has been modified to automatically only step into timer since
- # kernel_switch is pertinent only for 4.0.5 IRIX systems or earlier
-
- LIBPFA = /usr/lib/pfa
- all:
- if [ -r ${LIBPFA} ] ; then \
- (cd timer; $(MAKE) ); \
- else \
- echo ========== ; \
- echo \ \ \ \ Power Fortran is not installed--cannot compile timer ; \
- echo \ \ \ \ get/load the \"pfa\" software option ; \
- echo ========== ; \
- fi
-
- clean:
- cd timer; $(MAKE) clean
-
- clobber:
- cd timer; $(MAKE) clobber
-